home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / 33A.C < prev    next >
C/C++ Source or Header  |  1990-09-17  |  551b  |  29 lines

  1.  
  2. /* 
  3.     There may be additional include files required depending
  4.     upon the compile product you are using. Typical compilers
  5.     include Microsoft C by Microsoft or Turbo C by Boland Int'l.
  6. */
  7. #include <stdio.h>
  8. main()
  9. {
  10.     int    code, i=10, j=20, k=30, l=40;
  11.  
  12.     code=number(i,j,k,l,50,60,70,80,90,100);
  13.     if( code < 0 ) 
  14.        printf("no match\n");
  15.  
  16. }
  17.  
  18. number(a,b,c,d,e,f,g,h,i,k)
  19. int    a,b,c,d,e,f,g,h,i,k;
  20. {
  21.     if(a==b && c==d && e==f && g==h && i==k){
  22.         printf("arguments are matched pairs\n");
  23.         return(0);
  24.     }
  25.     else
  26.         return(-1);
  27. }
  28.  
  29.